Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gbrnt/NoteVelocity
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5
Choose a base ref
...
head repository: gbrnt/NoteVelocity
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Mar 7, 2014

  1. Copy the full SHA
    2c0041d View commit details
  2. Copy the full SHA
    4ae597d View commit details

Commits on Aug 18, 2014

  1. Added writeup PDF

    gbrnt committed Aug 18, 2014
    Copy the full SHA
    630f256 View commit details
Showing with 20 additions and 0 deletions.
  1. +1 −0 .gitignore
  2. +19 −0 notevelocity/setup.py.linux
  3. 0 notevelocity/{setup.py → setup.py.windows}
  4. BIN writeup.pdf
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -11,3 +11,4 @@ Test.*
*.pyc
*.swp
__pycache__
notevelocity/build/
19 changes: 19 additions & 0 deletions notevelocity/setup.py.linux
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python3
from cx_Freeze import setup, Executable

# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict(packages = ["os", "sys", "tkinter"], excludes = [])

import sys
base = 'Win32GUI' if sys.platform=='win32' else None

executables = [
Executable('main.py', base=base, targetName = 'NoteVelocity')
]

setup(name='NoteVelocity',
version = '0.5',
description = 'A speedy note-taking and revision program',
options = dict(build_exe = buildOptions),
executables = executables)
File renamed without changes.
Binary file added writeup.pdf
Binary file not shown.